home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 January: Mac OS SDK / Dev.CD Jan 99 SDK1.toast / Development Kits / Mac OS USB DDK_v1.0.1 / Examples / PrinterClassDriver / Utils.h < prev   
Encoding:
C/C++ Source or Header  |  1998-09-03  |  413 b   |  25 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        Utils.h
  3.  
  4.     Contains:    General utilities header
  5.  
  6. */
  7.  
  8. #ifndef __UTILS__
  9. #define __UTILS__
  10.  
  11. #ifndef __LISTS__
  12. #include <Lists.h>
  13. #endif
  14.  
  15. #ifndef __TYPES__
  16. #include <Types.h>
  17. #endif
  18.  
  19. extern    Boolean PStrEqualCaseInsensitive( Str255 string1, Str255 string2 );
  20. extern    void AppendPStr(StringPtr mainStr, StringPtr addStr);
  21. extern    void GetNameFromCell (StringPtr theString, Cell cell, ListHandle hList);
  22.  
  23. #endif
  24.  
  25.